home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / bin / znew < prev   
Text File  |  2005-10-13  |  4KB  |  149 lines

  1. #!/bin/sh
  2.  
  3. PATH="//bin:$PATH"; export PATH
  4. check=0
  5. pipe=0
  6. opt=
  7. files=
  8. keep=0
  9. res=0
  10. old=0
  11. new=0
  12. block=1024
  13. # block is the disk block size (best guess, need not be exact)
  14.  
  15. warn="(does not preserve modes and timestamp)"
  16. tmp=`mktemp /tmp/zfoo.XXXXXX`
  17. set -C
  18. echo hi > $tmp.1 || exit 1
  19. echo hi > $tmp.2 || exit 1
  20. if test -z "`(${CPMOD-cpmod} $tmp.1 $tmp.2) 2>&1`"; then
  21.   cpmod=${CPMOD-cpmod}
  22.   warn=""
  23. fi
  24.  
  25. if test -z "$cpmod" && ${TOUCH-touch} -r $tmp.1 $tmp.2 2>/dev/null; then
  26.   cpmod="${TOUCH-touch}"
  27.   cpmodarg="-r"
  28.   warn="(does not preserve file modes)"
  29. fi
  30.  
  31. # check if GZIP env. variable uses -S or --suffix
  32. gzip -q $tmp.1
  33. ext=`echo $tmp.1* | sed "s|$tmp.1||"`
  34. rm -f $tmp.[12]*
  35. if test -z "$ext"; then
  36.   echo znew: error determining gzip extension
  37.   exit 1
  38. fi
  39. if test "$ext" = ".Z"; then
  40.   echo znew: cannot use .Z as gzip extension.
  41.   exit 1
  42. fi
  43.  
  44. for arg
  45. do
  46.   case "$arg" in
  47.   -*)     opt="$opt $arg"; shift;;
  48.    *)     break;;
  49.   esac
  50. done
  51.  
  52. if test $# -eq 0; then
  53.   echo "recompress .Z files into $ext (gzip) files"
  54.   echo usage: `echo $0 | sed 's,^.*/,,'` "[-tv9KP]" file.Z...
  55.   echo "  -t tests the new files before deleting originals"
  56.   echo "  -v be verbose"
  57.   echo "  -9 use the slowest compression method (optimal compression)"
  58.   echo "  -K keep a .Z file when it is smaller than the $ext file"
  59.   echo "  -P use pipes for the conversion $warn"
  60.   exit 1
  61. fi
  62.  
  63. opt=`echo "$opt" | sed -e 's/ //g' -e 's/-//g'`
  64. case "$opt" in
  65.   *t*) check=1; opt=`echo "$opt" | sed 's/t//g'`
  66. esac
  67. case "$opt" in
  68.   *K*) keep=1; opt=`echo "$opt" | sed 's/K//g'`
  69. esac
  70. case "$opt" in
  71.   *P*) pipe=1; opt=`echo "$opt" | sed 's/P//g'`
  72. esac
  73. if test -n "$opt"; then
  74.   opt="-$opt"
  75. fi
  76.  
  77. for i do
  78.   n=`echo $i | sed 's/.Z$//'`
  79.   ntmp=`mktemp $n.XXXXXX`
  80.   if test ! -f "$n.Z" ; then
  81.     echo $n.Z not found
  82.     res=1; continue
  83.   fi
  84.   test $keep -eq 1 && old=`wc -c < "$n.Z"`
  85.   if test $pipe -eq 1; then
  86.     if gzip -d < "$n.Z" | gzip $opt > "$n$ext"; then
  87.       # Copy file attributes from old file to new one, if possible.
  88.       test -n "$cpmod" && $cpmod $cpmodarg "$n.Z" "$n$ext" 2> /dev/null
  89.     else
  90.       echo error while recompressing $n.Z
  91.       res=1; continue
  92.     fi
  93.   else
  94.     if test $check -eq 1; then
  95.       if cp -p "$n.Z" "$ntmp" 2> /dev/null || cp "$n.Z" "$ntmp"; then
  96.     :
  97.       else
  98.     echo cannot backup "$n.Z"
  99.         res=1; continue
  100.       fi
  101.     fi
  102.     if gzip -d "$n.Z"; then
  103.       :
  104.     else
  105.       test $check -eq 1 && mv "$ntmp" "$n.Z"
  106.       echo error while uncompressing $n.Z
  107.       res=1; continue
  108.     fi
  109.     if gzip $opt "$n"; then
  110.       :
  111.     else
  112.       if test $check -eq 1; then
  113.     mv "$ntmp" "$n.Z" && rm -f "$n"
  114.         echo error while recompressing $n
  115.       else
  116.     # compress $n  (might be dangerous if disk full)
  117.         echo error while recompressing $n, left uncompressed
  118.       fi
  119.       res=1; continue
  120.     fi
  121.   fi
  122.   test $keep -eq 1 && new=`wc -c < "$n$ext"`
  123.   if test $keep -eq 1 && test `expr \( $old + $block - 1 \) / $block` -lt \
  124.                   `expr \( $new + $block - 1 \) / $block`; then
  125.     if test $pipe -eq 1; then
  126.       rm -f "$n$ext"
  127.     elif test $check -eq 1; then
  128.       mv "$ntmp" "$n.Z" && rm -f "$n$ext"
  129.     else
  130.       gzip -d "$n$ext" && compress "$n" && rm -f "$n$ext"
  131.     fi
  132.     echo "$n.Z smaller than $n$ext -- unchanged"
  133.  
  134.   elif test $check -eq 1; then
  135.     if gzip -t "$n$ext" ; then
  136.       rm -f "$ntmp" "$n.Z"
  137.     else
  138.       test $pipe -eq 0 && mv "$ntmp" "$n.Z"
  139.       rm -f "$n$ext"
  140.       echo error while testing $n$ext, $n.Z unchanged
  141.       res=1; continue
  142.     fi
  143.   elif test $pipe -eq 1; then
  144.     rm -f "$n.Z"
  145.   fi
  146. done
  147. rm -f "$ntmp"
  148. exit $res
  149.